home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / dbase / do1beta.zip / DO.ERR < prev    next >
Text File  |  1991-08-24  |  21KB  |  1,029 lines

  1. #
  2. 0   User break
  3. #
  4. 10  Illegal character.
  5. Legal characters are upper and lower case letters, digits and the
  6. characters :-+!"'/*()[]|><=.,;
  7. #
  8. 11  Character constants must be terminated with an apostrophe (')
  9. Eg 'a' and '\254'
  10. #
  11. 12  The comment is not terminated by */
  12. End of source has been encountered within a comment. This may be
  13. caused by nested comments.
  14. #
  15. 14  The name is too long. (max. 250 characters)
  16. #
  17. 15  The string is too long. (max. 250 characters in the source text)
  18. #
  19. 16 The string must be terminated with a double quote (") in the same line
  20. If you need newline characters in a string, use \n as in "First\n Next".
  21. If you need a string with more than 250 characters, use 'concat' to
  22. assemble it from shorter strings.
  23. #
  24. 17  Real constant is out of range.
  25. The valid range is: +-17976931348E+-308
  26. #
  27. 18  A hexadecimal digit is expected after a dollar sign.
  28. Eg X=$B800
  29. #
  30. 23  Too many nested conditional blocks (max. 25).
  31. #
  32. 24 Undeclared class or misspelling: %s
  33. #
  34. 25 Day number out of range in Int::cday()
  35. #
  36. 26 Invalid Long operator
  37. #
  38. 100 Cannot create file.
  39. #
  40. 120 The database does not exist.
  41. #
  42. 130 Cannot close file.
  43. #
  44. 140 Cannot read file.
  45. #
  46. 160 Cannot write file.
  47. #
  48. 180 Cannot close file.
  49. #
  50. 200 File is not a database.
  51. #
  52. 240 No open database.
  53. #
  54. 260 Record length is too large
  55. The current maximum record length is 32666
  56. #
  57. 300 Cannot build index file
  58. #
  59. 310 Cannot close index file
  60. #
  61. 320 File is not an index file
  62. #
  63. 330 Index file is missing a key
  64. #
  65. 340 Key is not unique
  66. #
  67. 350 Key evaluates to a logical result
  68. Only character, numeric, and date keys are allowed for index files
  69. #
  70. 360 Key Length or Type has changed
  71. #
  72. 370 Key Length over 100 characters
  73. #
  74. 380 Seek on database with no index file
  75. #
  76. 400 Cannot lock file
  77. #
  78. 409 Null statement
  79. #
  80. 450 Cannot unlock file
  81. #
  82. ------------ RUNTIME ERRORS
  83. #
  84. 1001 Stack overflow. Not enough memory or an endless loop.
  85. #
  86. 1002 Heap overflow. Not enough memory or an endless loop.
  87. #
  88. 1003 Requested block is too big (max 0xFFF0 bytes).
  89. #
  90. 1004 Mismatch between freed blocks size and internal record.
  91. #
  92. 1005 Attempt to release already released block.
  93. #
  94. 1006 Heap signature overwritten
  95. #
  96. 1007 Term too big.
  97. A term, including associated pointer data, cannot exceed 64K when
  98. entered into a database or sent across a message pipe.
  99. #
  100. 1008 Memory initialization failure.
  101. This indicates severe shortage of memory. The program is unable
  102. to start execution.
  103. #
  104. 1010 Stack overflow. 
  105. #
  106. 1020 Trail overflow. 
  107. #
  108. 1030 Arithmetic overflow in real operation. 
  109. The range for reals is  -1.0e308 .. 1.0e308.
  110. #
  111. 1031 Arithmetic overflow in integer operation.
  112. The result cannot be stored in a 16-bit integer, which has a range
  113. of -32768 .. 32767.
  114. #
  115. 1032 Division by zero.
  116. #
  117. 1033 Negative values or 0 cannot be arguments to 'log' or 'ln'.
  118. #
  119. 1034 Negative values cannot be arguments to 'sqrt'.
  120. #
  121. ------------ IO & OS errors
  122. #
  123. 1101 Attempt to open an already open file.
  124. Note that a symbolic file-name, declared with a file-domain,
  125. can only be used for one file at a time.
  126. #
  127. 1102 Attempt to assign input device to a file that is not in readmode.
  128. The file was opened in write-only mode.
  129. #
  130. 1103 Attempt to assign output device to a file that is not in writemode.
  131. The file was opened in read-only mode.
  132. #
  133. 1104 The file isn't open.
  134. #
  135. 1105 Illegal mode in filemode predicate, should be 0 or 1.
  136. '0' specifies Text mode, while '1' specifies Binary (raw) mode.
  137. #
  138. 1106 Invalid operation on device.
  139. #
  140. 1107 Eof can only be used during readmode.
  141. The file might be closed.
  142. #
  143. 1108 Illegal device or path.
  144. #
  145. 1109 Wrong number of arguments in the format string.
  146. #
  147. 1110 File too big, or not enough memory for file.
  148. #
  149. 1111 Wrong number of bytes read from file.
  150. This is either caused by a corrupt database or errors using the readblock
  151. predicate.
  152. #
  153. 1112 Not able to write correct number of bytes to file.
  154. This is probably caused by a full disk.
  155. #
  156. 1113 Invalid arguments to the 'date'-predicate.
  157. The arguments should be three integers in the order day, month, year.
  158. #
  159. 1114 Invalid arguments to the 'time'-predicate.
  160. The arguments should be four integers in the order
  161.   hours       0..24
  162.   minutes     0..59
  163.   seconds     0..59
  164.   hundredths  0..99
  165. #
  166. 1115 'unreadchar' failed because of full buffer (max 128 characters).
  167. #
  168. 1116 Failure in 'system' call.
  169. Either COMMAND.COM can not be found, or the indicated .EXE or .COM file
  170. can not be found.
  171. #
  172. 1117 Error executing external program.
  173. The external program might be too big to be executed from the
  174. Prolog system or it might be an illegal EXE-file, or it remained resident.
  175. Try to execute the external program from the DOS shell to see what happens.
  176. #
  177. 1118 Cannot access port(s).
  178. The port(s) cannot be reserved. Another program is probably using them.
  179. #
  180. 1133 Incorrect operating system version.
  181. The OS version doesn't have the support required by the attempted operation.
  182. #
  183. ----------------------- SCR & WD Error's
  184. #
  185. 1201 The arguments in 'makewindow' are illegal.
  186. Check that
  187.   - the window number is in the range 1 .. 127
  188.   - StartRow+NoOfRows <= no. of rows on screen (usually 25 or 43)
  189.   - StartCol+NoOfCols <= no. of cols on screen (usually 80 or 120)
  190. #
  191. 1202 The cursor values are illegal.
  192. The Row and Column must be inside the actual window.
  193. #
  194. 1203 The window referred to does not exist.
  195. #
  196. 1205 Maximum number of windows exceeded. ( The maximum is 34. )
  197. #
  198. 1206 The arguments in 'resizewindow' are illegal.
  199. in resizewindow(StartRow,StartCol,NoOfRows,NoOfCols)
  200. Check that
  201.   - StartRow+NoOfRows <= no. of rows on screen (usually 25 or 43)
  202.   - StartCol+NoOfCols <= no. of cols on screen (usually 80 or 132)
  203.   - Both StartRow and StartCol are positive.
  204. #
  205. 1207 Scroll predicate is not supported in graphic.
  206. #
  207. 1208 Not possible to set indicated textmode.
  208. #
  209. 1209 Operation not possible on system windows.
  210. #
  211. 1210 Illegal operation on a system window.
  212. #
  213. 1211 The window is compressed.
  214. #
  215. 1212 The window is expanded.
  216. #
  217. 1213 Wrong length of framestring. Must be excactly 6 characters.
  218. #
  219. -------------------------- Editor
  220. #
  221. 1501 Editor text buffer full.
  222. #
  223. -------------------------- String handling
  224. #
  225. 1601 String index error.
  226. A substring or subchar call with index values outside the string.
  227. #
  228. 1602 Result string cannot be bigger than 64K.
  229. #
  230. -------------------------- BGI
  231. #
  232. 1701 BGI graphics not installed.
  233. #
  234. 1702 Graphics hardware not detected.
  235. #
  236. 1703 Device driver file not found.
  237. #
  238. 1704 Invalid device driver file.
  239. #
  240. 1705 Not enough memory to load driver.
  241. #
  242. 1706 Out of memory in scan fill.
  243. #
  244. 1707 Out of memory in flood fill.
  245. #
  246. 1708 Font file not found.
  247. #
  248. 1709 Not enough memory to load font.
  249. #
  250. 1710 Invalid graphics mode for selected driver.
  251. #
  252. 1711 Graphics error.
  253. #
  254. 1712 Graphics I/O error.
  255. #
  256. 1713 Invalid font file.
  257. #
  258. 1714 Invalid font number.
  259. #
  260. 1715 Invalid device number.
  261. #
  262. 1750 Wrong list length in setfillpattern.
  263. #
  264. -------------------------- Directory browser
  265. #
  266. 1901 Too many files.
  267. #
  268. -------------------------- Configuration loading
  269. #
  270. 2001 Bad configuration file.
  271. #
  272. 2002 Error reading Configuration file.
  273. #
  274. -------------------------- Operating system errors
  275.                Note that many of these only apply to the OS2
  276.                version, and that for OS2 many of the messages
  277.                are not applicable. They are, however, included
  278.                for completeness.
  279. #
  280. 7001 Invalid function number
  281. #
  282. 7002 File not found
  283. #
  284. 7003 Path not found
  285. #
  286. 7004 Out of handles
  287. #
  288. 7005 Access denied
  289. #
  290. 7006 Invalid handle
  291. #
  292. 7007 Memory control blocks destroyed
  293. #
  294. 7008 Insufficient memory
  295. #
  296. 7009 Invalid memory block address
  297. #
  298. 7010 Invalid environment
  299. #
  300. 7011 Invalid format
  301. #
  302. 7012 Invalid access code
  303. #
  304. 7013 Invalid data
  305. #
  306. 7014 Unknown unit
  307. #
  308. 7015 Invalid disk drive
  309. #
  310. 7016 Cannot remove current directory
  311. #
  312. 7017 Not same device
  313. #
  314. 7018 No more files
  315. #
  316. 7019 Disk write-protected
  317. #
  318. 7020 Unknown unit
  319. #
  320. 7021 Drive not ready
  321. #
  322. 7022 Unknown command
  323. #
  324. 7023 Data error (CRC)
  325. #
  326. 7024 Bad request structure length
  327. #
  328. 7025 Seek error
  329. #
  330. 7026 Unknown type of medium
  331. #
  332. 7027 Sector not found
  333. #
  334. 7028 Printer out of paper
  335. #
  336. 7029 Write fault
  337. #
  338. 7030 Read fault
  339. #
  340. 7031 General failure
  341. #
  342. 7032 Sharing violation
  343. #
  344. 7033 Lock violation
  345. #
  346. 7034 Invalid disk change
  347. #
  348. 7035 FCB unavailable
  349. #
  350. 7036 Sharing buffer exceeded
  351. #
  352. 7050 Unsupported network request
  353. #
  354. 7051 Remote machine not listening
  355. #
  356. 7052 Duplicate name on network
  357. #
  358. 7053 Network name not found
  359. #
  360. 7054 Network busy
  361. #
  362. 7055 Device no longer exists on network
  363. #
  364. 7056 NetBIOS command limit exceeded
  365. #
  366. 7057 Error in network adapter hardware
  367. #
  368. 7058 Incorrect response from network
  369. #
  370. 7059 Unexpected network error
  371. #
  372. 7060 Remote adapter incompatible
  373. #
  374. 7061 Print queue full
  375. #
  376. 7062 Insufficient memory for print file
  377. #
  378. 7063 Print file canceled
  379. #
  380. 7064 Network name deleted
  381. #
  382. 7065 Network access denied
  383. #
  384. 7066 Incorrect network device type
  385. #
  386. 7067 Network name not found
  387. #
  388. 7068 Network limit exceeded
  389. #
  390. 7069 NetBIOS session limit exceeded
  391. #
  392. 7070 File sharing temporarily paused
  393. #
  394. 7071 Network request not accepted
  395. #
  396. 7072 Print or disk redirection paused
  397. #
  398. 7080 File already exists
  399. #
  400. 7082 Cannot make directory
  401. #
  402. 7083 Fail on Int 24H (critical error)
  403. #
  404. 7084 Too many redirections
  405. #
  406. 7085 Duplicate redirection
  407. #
  408. 7086 Invalid password
  409. #
  410. 7087 Invalid parameter
  411. #
  412. 7088 Network device fault
  413. #
  414. 7089 No process slots available
  415. #
  416. 7090 System error
  417. #
  418. 7091 Timer service table overflow
  419. #
  420. 7092 Timer service table duplicate
  421. #
  422. 7093 No limits to work on
  423. #
  424. 7095 Interupted system call
  425. #
  426. 7100 Open semaphore limit exceeded
  427. #
  428. 7101 Exclusive semaphore already owned
  429. #
  430. 7102 DosCloseSem Found semaphore set
  431. #
  432. 7103 Too many exclusive semaphore requests
  433. #
  434. 7104 Operation invalid at interrupt time
  435. #
  436. 7105 Semaphore owner terminated
  437. #
  438. 7106 Semaphore limit exceeded
  439. #
  440. 7107 Insert drive B disk into drive A
  441. #
  442. 7108 Drive locked by another process
  443. #
  444. 7109 Write on pipe with no reader
  445. #
  446. 7110 Open/create failed due to explicit fail command
  447. #
  448. 7111 Buffer too small
  449. #
  450. 7112 Disk is full
  451. #
  452. 7113 No more search handles
  453. #
  454. 7114 Invalid target handle for DosDupHandle
  455. #
  456. 7115 Bad user virtual address
  457. #
  458. 7116 Error on display write or keyboard read
  459. #
  460. 7117 Invalid DosDevIOCtl category
  461. #
  462. 7118 Invalid value for verify flag
  463. #
  464. 7119 Driver does not support DosDevIOCtl
  465. #
  466. 7120 Invalid function called
  467. #
  468. 7121 Timed out waiting for semaphore
  469. #
  470. 7122 Insufficient data in buffer
  471. #
  472. 7123 Invalid character or bad filename
  473. #
  474. 7124 Unimplemented information level
  475. #
  476. 7125 No volume label found
  477. #
  478. 7126 Invalid module handle
  479. #
  480. 7127 Procedure not found in module
  481. #
  482. 7128 No child processes found
  483. #
  484. 7129 Child processes still running
  485. #
  486. 7130 Invalid handle operation for direct disk access
  487. #
  488. 7131 Cannot seek to negative offset
  489. #
  490. 7132 Cannot seek on pipe or device
  491. #
  492. 7133 Drive has previously joined drives
  493. #
  494. 7134 Drive is already joined
  495. #
  496. 7135 Drive is already substituted
  497. #
  498. 7136 Drive is not joined
  499. #
  500. 7137 Drive is not substituted
  501. #
  502. 7138 Cannot join to joined drive
  503. #
  504. 7139 Cannot substitute to substituted drive
  505. #
  506. 7140 Cannot join to substituted
  507. #
  508. 7141 Cannot substitute to joined drive
  509. #
  510. 7142 Drive is busy
  511. #
  512. 7143 Cannot join or substitute drive to directory on same drive
  513. #
  514. 7144 Must be subdirectory of root
  515. #
  516. 7145 Joined directory must be empty
  517. #
  518. 7146 Path is already used in substitute
  519. #
  520. 7147 Path is already used in join
  521. #
  522. 7148 Path is being used by another process
  523. #
  524. 7149 Cannot join or substitute drive having directory that is target of previous substitute
  525. #
  526. 7150 System trace error
  527. #
  528. 7151 DosMuxSemWait errors
  529. #
  530. 7152 Systems limit on DosMuxSemWait calls exceeded
  531. #
  532. 7153 Invalid list format
  533. #
  534. 7154 Volume label too big
  535. #
  536. 7155 Cannot create another TCB
  537. #
  538. 7156 Signal refused
  539. #
  540. 7157 Segment is discarded
  541. #
  542. 7158 Segment was not locked
  543. #
  544. 7159 Bad tread ID address
  545. #
  546. 7160 Bad environment pointer
  547. #
  548. 7161 Bad pathname for DosExecPgm
  549. #
  550. 7162 Signal already pending
  551. #
  552. 7163 Unknown medium
  553. #
  554. 7164 No more threads available
  555. #
  556. 7165 Monitors not supported
  557. #
  558. 7180 Invalid segment number
  559. #
  560. 7181 Invalid call gate
  561. #
  562. 7182 Invalid ordinal
  563. #
  564. 7183 Shared segment or system semaphore already exists
  565. #
  566. 7184 No child process running
  567. #
  568. 7185 Child process is still alive
  569. #
  570. 7186 Invalid flag number
  571. #
  572. 7187 semaphore does not exist
  573. #
  574. 7188 Invalid stating code segment
  575. #
  576. 7189 Invalid stack segment
  577. #
  578. 7190 Invalid module type
  579. #
  580. 7191 Wrong EXE file header
  581. #
  582. 7192 Invalid EXE file,LINK errors
  583. #
  584. 7193 Invalid EXE format
  585. #
  586. 7194 Iterated data exceeds 64 KB
  587. #
  588. 7195 Invalid minimum allocation size
  589. #
  590. 7196 Invalid dynamic link from ring 2 segment
  591. #
  592. 7197 IOPL not enabled in CONFIG.SYS
  593. #
  594. 7198 Invalid segment descriptor privilege limit
  595. #
  596. 7199 Automatic data segment exceeds 64 KB
  597. #
  598. 7200 Ring 2 segment must be movable
  599. #
  600. 7201 Relocation chain exceeds segment limit
  601. #
  602. 7202 Infinite loop in relocation chain
  603. #
  604. 7203 Environment variable not found
  605. #
  606. 7204 Not current country
  607. #
  608. 7205 NO process whit handler to receive signal
  609. #
  610. 7206 Filename or extension too long
  611. #
  612. 7207 Ring 2 stack in use
  613. #
  614. 7208 Meta expansion too long
  615. #
  616. 7209 Invalid signal number
  617. #
  618. 7210 Inactive thread
  619. #
  620. 7211 File system information not available
  621. #
  622. 7212 Locked error
  623. #
  624. 7213 Bad dynamic link
  625. #
  626. 7214 Too many modules
  627. #
  628. 7215 Nesting not allowed
  629. #
  630. 7216 Cannot shrink ring 2 stack
  631. #
  632. 7230 Nonexistent pipe or invalid operation
  633. #
  634. 7231 Specified pipe is busy
  635. #
  636. 7232 No data on nonblocking pipe read
  637. #
  638. 7233 Pipe disconnected by server
  639. #
  640. 7234 Additional data is available
  641. #
  642. 7240 Network session was canceled
  643. #
  644. 7262 Stack too large
  645. #
  646. 7303 Invalid process ID
  647. #
  648. 7304 Invalid priority level increment
  649. #
  650. 7305 Not a descendant process
  651. #
  652. 7306 Requestor not Task Manager
  653. #
  654. 7307 Invalid priority class
  655. #
  656. 7308 Invalid scope
  657. #
  658. 7309 Invalid thread ID
  659. #
  660. 7310 Cannot shrink DosSubSet segment
  661. #
  662. 7311 Out of memory(DosSubAlloc)
  663. #
  664. 7312 Invalid block specified(DosSubFree)
  665. #
  666. 7313 Bad size parameter
  667. #
  668. 7314 Bad flag parameter(DosSubSet)
  669. #
  670. 7315 Invalid segment selector
  671. #
  672. 7316 Message too long for buffer
  673. #
  674. 7317 Message ID number not found
  675. #
  676. 7318 Unable to access message file
  677. #
  678. 7319 Invalid message file format
  679. #
  680. 7320 Invalid insertion variable count
  681. #
  682. 7321 Unable to perform function
  683. #
  684. 7322 Unable to wake up
  685. #
  686. 7323 Invalid semaphore handle
  687. #
  688. 7324 No timers available
  689. #
  690. 7326 Invalid timer handle
  691. #
  692. 7327 Date or time invalid
  693. #
  694. 7328 Internal system error
  695. #
  696. 7329 Current queue name does not exist
  697. #
  698. 7330 Current process is not queue owner
  699. #
  700. 7331 Current process owns queue
  701. #
  702. 7332 Duplicate queue name
  703. #
  704. 7333 Queue record does not exist
  705. #
  706. 7334 Inadequate queue memory
  707. #
  708. 7335 Invalid queue name
  709. #
  710. 7336 Invalid queue priority parameter
  711. #
  712. 7337 Invalid queue handle
  713. #
  714. 7338 Queue link not found
  715. #
  716. 7339 Queue memory error
  717. #
  718. 7340 Previous queue record was at end of queue
  719. #
  720. 7341 Process does not have access to queue
  721. #
  722. 7342 Queue is empty
  723. #
  724. 7343 Queue name does not exist
  725. #
  726. 7344 Queues not initialized
  727. #
  728. 7345 Unable to access queues
  729. #
  730. 7346 Unable to add new queue
  731. #
  732. 7347 Unable to initialize queues
  733. #
  734. 7349 Invalid Vio function replaced
  735. #
  736. 7350 Invalid pointer to parameter
  737. #
  738. 7355 Unsupported screen mode
  739. #
  740. 7356 Invalid cursor width value
  741. #
  742. 7358 Invalid row value
  743. #
  744. 7359 Invalid column value
  745. #
  746. 7366 Invalid wait flag setting
  747. #
  748. 7367 Screen not previously locked
  749. #
  750. 7369 Invalid session ID
  751. #
  752. 7370 No session available
  753. #
  754. 7371 Session not found
  755. #
  756. 7372 Title cannot be changed
  757. #
  758. 7373 Invalid parameter(Kbd)
  759. #
  760. 7375 Invalid wait parameter
  761. #
  762. 7376 Invalid length for keyboard
  763. #
  764. 7377 Invalid echo mode mask
  765. #
  766. 7378 Invalid input mode mask
  767. #
  768. 7379 Invalid monitor parameters
  769. #
  770. 7380 Invalid device name string
  771. #
  772. 7381 Invalid device handle
  773. #
  774. 7382 Buffer too small
  775. #
  776. 7383 Buffer empty
  777. #
  778. 7384 Data record too large
  779. #
  780. 7386 Mouse handle invalid or closed
  781. #
  782. 7389 Invalid display mode parameters
  783. #
  784. 7391 Invalid entry point
  785. #
  786. 7392 Invalid function mask
  787. #
  788. 7394 Pointer drawn
  789. #
  790. 7395 Invalid frequency for DosBeep
  791. #
  792. 7396 Cannot find COUNTRY.SYS file
  793. #
  794. 7397 Cannot open COUNTRY.SYS file
  795. #
  796. 7398 Country code not found
  797. #
  798. 7399 Information truncated to fit buffer
  799. #
  800. 7400 Selected type does not exist
  801. #
  802. 7401 Selected type not in file
  803. #
  804. 7402 Vio function for Task Manager only
  805. #
  806. 7403 Invalid string length(Vio)
  807. #
  808. 7404 VioDeRegister not allowed
  809. #
  810. 7405 Popup screen not allocated
  811. #
  812. 7406 Pop-up already on screen
  813. #
  814. 7407 Kdb function for Task Manager only
  815. #
  816. 7408 Invalid ASCIIZ string length(Kdb)
  817. #
  818. 7409 Invalid function replacement mask
  819. #
  820. 7410 KbdRegister not allowed
  821. #
  822. 7411 KbdDeRegister not allowed
  823. #
  824. 7412 Mou function for Task Manager only
  825. #
  826. 7413 Invalid ASCIIZ string length(Mou)
  827. #
  828. 7414 Invalid replacement mask
  829. #
  830. 7415 MouRegister not allowed
  831. #
  832. 7416 MouDeRegister not allowed
  833. #
  834. 7417 Invalid action specified
  835. #
  836. 7418 INIT called more than one
  837. #
  838. 7419 Screen group number not found
  839. #
  840. 7420 Caller is not shell
  841. #
  842. 7421 Invalid parameter(Vio)
  843. #
  844. 7422 Save/restore already owned
  845. #
  846. 7423 Thread unblocked by VioModeUndo or VioSavRedrawUndo
  847. #
  848. 7425 Caller not Task Manager
  849. #
  850. 7426 VioRegister Not allowed
  851. #
  852. 7427 No VioModeWait thread exists
  853. #
  854. 7428 No VioSavRedrawWait thread exists
  855. #
  856. 7429 Function invalid in background
  857. #
  858. 7430 Function not allowed during pop-up
  859. #
  860. 7431 Caller is not the base shell
  861. #
  862. 7432 Invalid status requested
  863. #
  864. 7433 No-wait parameter out of bounds
  865. #
  866. 7434 Cannot lock screen
  867. #
  868. 7435 Invalid wait parameter
  869. #
  870. 7436 Invalid Vio handle
  871. #
  872. 7438 Invalid length for Vio function
  873. #
  874. 7439 Invalid Kdb handle
  875. #
  876. 7440 Out of Kbd handles
  877. #
  878. 7441 Cannot create logical Keyboard
  879. #
  880. 7442 Code page load failed
  881. #
  882. 7443 Invalid code page ID
  883. #
  884. 7445 Keyboard focus required
  885. #
  886. 7446 Caller already has focus
  887. #
  888. 7447 Keyboard subsystem is busy
  889. #
  890. 7448 Invalid code page
  891. #
  892. 7449 Cannot get keyboard focus
  893. #
  894. 7450 Session is not selectable
  895. #
  896. 7451 Parent/child session not in foreground
  897. #
  898. 7452 Not parent of specified child
  899. #
  900. 7453 Invalid session start mode
  901. #
  902. 7454 Invalid session start option
  903. #
  904. 7455 Invalid session bonding option
  905. #
  906. 7456 Invalid session select option
  907. #
  908. 7457 Session started in background
  909. #
  910. 7458 Invalid session stop option
  911. #
  912. 7459 Reserved parameter not 0
  913. #
  914. 7460 Session parent process already exists
  915. #
  916. 7461 Invalid data length
  917. #
  918. 7462 Parent session not bound
  919. #
  920. 7463 Retry request block allocation
  921. #
  922. 7464 Unavailable for detached process(Kbd)
  923. #
  924. 7465 Unavailable for detached process(Vio)
  925. #
  926. 7466 Unavailable for detached process(Mou)
  927. #
  928. 7467 No font available to support mode
  929. #
  930. 7468 User font active
  931. #
  932. 7469 Invalid code page specified
  933. #
  934. 7470 System displays do not support code page
  935. #
  936. 7471 Current display does not support code page
  937. #
  938. 7472 Invalid code page
  939. #
  940. 7473 Code page list is too small
  941. #
  942. 7474 Code page not moved
  943. #
  944. 7475 Mode switch initialization error
  945. #
  946. 7476 Code page not found
  947. #
  948. 7477 Internal error
  949. #
  950. 7478 Invalid session start trace indicator
  951. #
  952. 7479 Vio internal Resource error
  953. #
  954. 7480 Vio shell initialization error
  955. #
  956. 7481 No Task Manager hard errors
  957. #
  958. 7482 DosSetCp unable to set display or keyboard code page
  959. #
  960. 7483 Error during Vio pop-up
  961. #
  962. 7484 Critical section overflow
  963. #
  964. 7485 Critical section underflow
  965. #
  966. 7486 Reserved parameter is not 0
  967. #
  968. 7487 Bad physical address
  969. #
  970. 7488 No selectors requested
  971. #
  972. 7489 Not enough GDT selectors available
  973. #
  974. 7490 Not a GDT selector
  975. #
  976. 7491 Invalid program type
  977. #
  978. 7492 Invalid program control
  979. #
  980. 7493 Invalid program inheritance option
  981. #
  982. 7494 Vio function not allowed in PM window
  983. #
  984. 7495 Function not supported in non PM screen group
  985. #
  986. 7496 Vio shield already owned
  987. #
  988. 7497 Vio handle exhausted
  989. #
  990. 7498 Vio error occured, details sent to error log
  991. #
  992. 7499 Invalid display context
  993. #
  994. 7500 Kbd input not available
  995. #
  996. 7501 Mou input not available
  997. #
  998. 7502 Invalid mouse handle
  999. #
  1000. 7503 Invalid debugging parameters
  1001. #
  1002. 7504 Kbd function not allowed in PM window
  1003. #
  1004. 7505 Mou function not allowed in PM window
  1005. #
  1006. 7506 Invalid icon file
  1007. #
  1008. 10000 Cannot create new object
  1009. #
  1010. 10001 Cannot evaluate expression
  1011. #
  1012. 10002 Unknown variable 
  1013. #
  1014. 10003 Cannot evaluate expression
  1015. #
  1016. 10004 '%s' expected
  1017. #
  1018. 10005 Array subscript out of bounds
  1019. #
  1020. 10006 Expression expected
  1021. #
  1022. 10007 Operator expected
  1023. #
  1024. 10008 Type conversion error
  1025. #
  1026. 10009 Argument mismatch
  1027. #
  1028. 10010 Parent class does not exist
  1029.